home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Output / JACKaudiooutput.h < prev    next >
C/C++ Source or Header  |  2005-03-12  |  1KB  |  46 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   JACKaudiooutput.h - Audio output for JACK
  5.   Copyright (C) 2002 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22. #ifndef JACK_AUDIO_OUTPUT_H
  23. #define JACK_AUDIO_OUTPUT_H
  24.  
  25. #include <jack/jack.h>
  26.  
  27. #include "../globals.h"
  28. #include "../Misc/Master.h"
  29.  
  30.  
  31. #if (REALTYPE!=jack_default_audio_sample_t)
  32. #error "The internal sample datatype of ZynAddSubFX and the datatype of jack differs.\
  33.  In order to compile ZynAddSubFX the 'REALTYPE' and 'jack_default_audio_sample_t' must be equal.\
  34.  Set the 'REALTYPE' data type (which is defined in 'globals.h') to what is defined \
  35.  in the file types.h from jack include directory as 'jack_default_audio_sample_t' (as float or double)."
  36. #endif
  37.  
  38.  
  39.  
  40.  
  41. bool JACKaudiooutputinit(Master *master_);
  42. void JACKfinish();
  43.  
  44. #endif
  45.  
  46.